home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / misc / OpalDev.lha / Examples / kill.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-01  |  293 b   |  18 lines

  1. #include "opal/opallib.h"
  2. #include <stdlib.h>
  3.  
  4. #ifndef    AZTEC_C
  5. #include <proto/all.h>
  6. #endif
  7.  
  8. struct OpalBase *OpalBase;
  9.  
  10.  
  11. main()
  12. {
  13.     OpalBase = (struct OpalBase *) OpenLibrary ("opal.library",0L);
  14.     if (OpalBase==NULL) exit (10);
  15.     CloseScreen24();
  16.     CloseLibrary ((struct Library *)OpalBase);
  17. }
  18.